home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / orbug.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  193 b   |  9 lines

  1. program OrBug;
  2. var
  3.   a: Integer;
  4. begin
  5.   ReadLn (a);
  6.   if (a = 0) or (100 div a > 42) then  { This is NOT safe! }
  7.     WriteLn ('You''re lucky. But the test could have crashed...')
  8. end.
  9.